home *** CD-ROM | disk | FTP | other *** search
- function scoreplus1()
- {
- if(lb < 1000)
- {
- lb += 10;
- }
- if(lb >= 1000)
- {
- lb = 1000;
- clearInterval(intervalID1);
- _root.lc.play();
- }
- }
- stop();
- _parent.lc_music.start();
- lb = 0;
- var intervalID1;
- intervalID1 = setInterval(scoreplus1,8);
- onEnterFrame = function()
- {
- if(Key.isDown(32))
- {
- gotoAndStop(15);
- delete this.onEnterFrame;
- }
- };
-